home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacWorld 1996 April
/
Macworld (1996-04).dmg
/
Shareware World
/
Entertainment
/
General
/
Xconq 7.0.1
/
lib
/
makedir.sh
< prev
next >
Wrap
Linux/UNIX/POSIX Shell Script
|
1995-08-22
|
315b
|
16 lines
#!/bin/sh
# Create the imf dir file.
# The perl version in makedir.pl detects some errors that this one will
# miss, but otherwise they're identical in behavior.
echo "ImageFamilyName FileName"
grep '(imf ' $* | \
sed -e 's/\(.*\):(imf "\([-a-z0-9]*\)".*$/\2 \1/' | \
grep -v : | \
sort | \
uniq
echo ". ."